layout.tsx 110 B

123
  1. export default function AuthLayout({ children }: { children: React.ReactNode }) {
  2. return <>{children}</>;
  3. }